home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / ov_all.zip / TI611.ASC < prev    next >
Text File  |  1991-09-11  |  991b  |  67 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT  :  ObjectVision                           NUMBER  :  611
  9.   VERSION  :  1.0
  10.        OS  :  PC DOS
  11.      DATE  :  September 11, 1991                         PAGE : 1/1
  12.  
  13.     TITLE  :  Leading zeros for Zip Codes
  14.  
  15.  
  16.  
  17.  
  18.   ObjectVision interprets numbers like a spreadsheet.  The number
  19.   007 is the same as 7 in ObjectVision.  In zip codes, social
  20.   security numbers and account numbers the leading zeros are
  21.   required.
  22.  
  23.   To make ObjectVision keep the leading zeros in the case of Zip
  24.   Codes, place a tree on the Zip Code field which branches on Zip
  25.   Code.  It will have two conclusions, one is if the Zip Code is
  26.   less than 10000, then 0&@right(Zip Code,4) otherwise, +Zip Code.
  27.  
  28.   Tree on Zip Code
  29.     Branch on Zip Code
  30.       <10000 then 0&@right(Zip Code,4)
  31.       otherwise  +Zip Code
  32.  
  33.   Other types of numbers will vary depending on the nature of the
  34.   "number" being used.
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.